| Conditions | 1 |
| Total Lines | 9 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import { BaseEndpoint } from './baseEndpoint'; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Get alternative names for specified company |
||
| 25 | * @param { number } companyID |
||
| 26 | * @returns { Promise<CompanyAlternativeNamesResponse> } |
||
| 27 | * @see https://developers.themoviedb.org/3/companies/get-company-alternative-names |
||
| 28 | */ |
||
| 29 | public async alternativeNames(companyID: number): Promise<CompanyAlternativeNamesResponse> { |
||
| 30 | return this.sendGetRequest(`company/${companyID}/alternative_names`); |
||
| 31 | } |
||
| 44 |